home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1995.rar / 1995 / AUG / RP9508 / hrsample.dpr < prev    next >
Text File  |  1995-04-03  |  476b  |  20 lines

  1. {This program demonstrates ways to use Delphi methods and properties to
  2.  manipulate the current application Help file and access specific topics
  3.  within the Help file.}
  4.  
  5.  program Hrsample;
  6.  
  7. uses
  8.   Forms,
  9.   Mainfrm in 'MAINFRM.PAS' {MainWin},
  10.   Btnbar in 'BTNBAR.PAS' {BtnBarWin};
  11.  
  12. {$R *.RES}
  13.  
  14. begin
  15.   Application.HelpFile := 'HRINFO.HLP';
  16.   Application.CreateForm(TMainWin, MainWin);
  17.   Application.CreateForm(TBtnBarWin, BtnBarWin);
  18.   Application.Run;
  19. end.
  20.